* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-image: url("blog's ntraget.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 3em;
}

.nav {
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title a {
  font-size: 22px;
  font-weight: bold;
  color: #00f7ff;
  text-decoration: none;
  line-height: 1;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links ul li a {
  font-size: 14px;
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
}

.nav-links ul li a:hover {
  color: #00f7ff;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #00f7ff;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #0f0f1a;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #00f7ff;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-nav ul li a:hover {
  color: #00f7ff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}

.heading-container {
  background-color: #262675;
  color: #ffffff;
  padding: 0.5em 0;
  position: fixed;
  top: 68px;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 30px 0 rgba(2, 0, 31, 0.2);
  z-index: 999;
}

.heading-container h4 {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.options-container {
  font-size: 18px;
  margin: 9em 0 2em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  text-align: center;
}

.option {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  padding: 0.8em 1.5em;
  border-radius: 0.5em;
  text-transform: capitalize;
  transition: background-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.option:hover {
  background-color: rgba(255, 255, 255, 1);
}

.footer {
  text-align: center;
  padding: 1em 0;
  background-color: aliceblue;
  color: #555;
  font-size: 0.7em;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* RUNNING TEXT PROMO */
.global-running-text {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;

  position: fixed;
  bottom: 60px; 
  left: 0;
  z-index: 998;
}

.running-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: runningText 19s linear infinite;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.running-track a {
  color: #00f7ff;
  font-weight: bold;
  text-decoration: none;
}

.running-track a:hover {
  text-decoration: underline;
}

@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
